structural design traffic - tradução para russo
Diclib.com
Dicionário Online

structural design traffic - tradução para russo

DESIGN PATTERN THAT EASES THE DESIGN BY IDENTIFYING A SIMPLE WAY TO REALIZE RELATIONSHIPS BETWEEN ENTITIES
Structural patterns; Structural design patterns; "Structural design patterns"

structural design traffic      

строительное дело

расчётная среднесуточная интенсивность движения (прогнозируемая на половину расчётного срока службы дорожной одежды)

structural design traffic      
расчётная среднесуточная интенсивность движения (прогнозируемая на половину расчётного срока службы дорожной одежды)
structural engineering         
  • An [[Airbus A380]], the world's largest passenger airliner
  • A [[statically determinate]] simply supported beam, bending under an evenly distributed load
  • bolt]] in [[shear stress]]. Top figure illustrates single shear, bottom figure illustrates double shear.
  • [[Burj Khalifa]], in [[Dubai]], the [[world's tallest building]], shown under construction in 2007 (since completed)
  • Earthquake-proof pyramid [[El Castillo, Chichen Itza]]
  •  [[Galileo Galilei]] published the book ''[[Two New Sciences]]'' in which he examined the failure of simple structures.
  •  [[Leonhard Euler]] developed the theory of [[buckling]] of columns.
  •  Designing medical equipment needs in-depth understanding of structural engineering
  • The McDonnell Planetarium by [[Gyo Obata]] in [[St Louis, Missouri]], USA, a concrete shell structure
  • [[Millennium Dome]] in London, UK, by [[Richard Rogers]] and [[Buro Happold]]
  •  Design of missile needs in depth understanding of [[Structural Analysis]]
  • Roman]] era aqueduct circa 19 BC
  • laws of motion]].
  • Ove Arup & Partners]]
  • ''Little Belt'']]: a [[truss bridge]] in [[Denmark]]
SUB-DISCIPLINE OF CIVIL ENGINEERING DEALING WITH THE CREATION OF MAN MADE STRUCTURES
Structural design; Structural Engineering; Structure (engineering); Structural Design; Simply supported; Engineering structure; Mechanical structure

общая лексика

проектирование зданий и сооружений

строительное дело

проектирование и расчёт зданий и сооружений

Definição

structural engineering
¦ noun the branch of civil engineering concerned with large modern buildings and similar structures.
Derivatives
structural engineer noun

Wikipédia

Structural pattern

In software engineering, structural design patterns are design patterns that ease the design by identifying a simple way to realize relationships among entities.

Examples of Structural Patterns include:

  • Adapter pattern: 'adapts' one interface for a class into one that a client expects
    • Adapter pipeline: Use multiple adapters for debugging purposes.
    • Retrofit Interface Pattern: An adapter used as a new interface for multiple classes at the same time.
  • Aggregate pattern: a version of the Composite pattern with methods for aggregation of children
  • Bridge pattern: decouple an abstraction from its implementation so that the two can vary independently
    • Tombstone: An intermediate "lookup" object contains the real location of an object.
  • Composite pattern: a tree structure of objects where every object has the same interface
  • Decorator pattern: add additional functionality to an object at runtime where subclassing would result in an exponential rise of new classes
  • Extensibility pattern: a.k.a. Framework - hide complex code behind a simple interface
  • Facade pattern: create a simplified interface of an existing interface to ease usage for common tasks
  • Flyweight pattern: a large quantity of objects share a common properties object to save space
  • Marker pattern: an empty interface to associate metadata with a class.
  • Pipes and filters: a chain of processes where the output of each process is the input of the next
  • Opaque pointer: a pointer to an undeclared or private type, to hide implementation details
  • Proxy pattern: a class functioning as an interface to another thing